@import url(https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap);

/*
    font-family: Inter, sans-serif;
*/

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    height: 100%;
}

.step-button {
    font-family: 'Inter', sans-serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 58px;
    width: 100%;
    padding: 5px 10px;
    background: linear-gradient(to bottom, #25B931, #46D750);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.step-title {
    color: #D11A48;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step-buttons--wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px auto 0;
    max-width: 336px;
}

.layout {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.picture-block {
    border-radius: 10px 10px 0 0;
    flex: 1 1 100%;
    height: 50vh;
    max-height: 45%;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.picture-block::before {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(../images/slide-1.jpg) url(../images/slide-2.jpg) url(../images/slide-3.jpg);
}

.picture-block .picture {
    -webkit-animation: fade-in 0.4s ease-in-out both;
    animation: fade-in 0.4s ease-in-out both;
    background: no-repeat top center;
    background-size: cover;
    display: none;
    height: 100%;
    width: 100%;
}

.picture-block .picture.active {
    display: block;
}

.picture-block .picture-1 {
    background-image: url(../images/slide-1.jpg);
}

.picture-block .picture-2 {
    background-image: url(../images/slide-2.jpg);
}

.picture-block .picture-3 {
    background-image: url(../images/slide-3.jpg);
}

.steps-list--union {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1 0 auto;
    width: 100%;
}

.bg {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    max-width: 450px;
    z-index: -1;
}

.bg-stage {
    -webkit-animation: bg 60s linear infinite;
    animation: bg 60s linear infinite;
    width: 100%;
}

.bg-stage img {
    display: block;
    width: 100%;
}

@-webkit-keyframes bg {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes bg {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.main-block {
    max-width: 450px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.steps-list {
    color: #fff;
    text-align: center;
    flex: 1 0 auto;
    padding: 7vh 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    height: 100dvh;
}

.step-item {
    position: relative;
    z-index: 9;
    display: none;
    width: 100%;
}

.step-item.active {
    display: block;
}

.step-item.quiz {
    flex: 1 0 auto;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    color: #000;
    text-align: left;
    padding: 18px 15px 105px;
}

.step-item.quiz .step-title {
    color: #40D14A;
    font-size: 18px;
}

.quiz-buttons--wrap {
    background-color: #F1F1F1;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    height: 105px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    z-index: 1;
}

.quiz-number,
.quiz-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #B4B4B4;
    border-radius: 50%;
    height: 58px;
    width: 58px;
    position: relative;
    font-size: 18px;
    color: #B4B4B4;
    text-align: center;
    text-transform: uppercase;
}

.quiz-button span {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-top: 4px;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* RTL */
.lang-he {
    direction: rtl;
}
.lang-he .step-item.quiz {
    text-align: right;
}

/* Unsubscribe */
.unsubscribe {
	width: 100%;
	height: auto;
	position: fixed;
	right: 0;
	bottom: 5px;
	left: 0;
	text-align: center;
	z-index: 100;
}
.unsubscribe a {
	font-size: 12px;
	font-weight: normal;
	color: #fff;
	text-decoration: none;
}
.unsubscribe a:hover {
	text-decoration: underline;
}

@media (max-width: 575px) {
    .steps-list {
        padding: 5vh 25px;
    }

    .step-item.quiz {
        font-size: 16px;
    }

    .quiz-buttons--wrap {
        gap: 25px;
        height: 90px;
    }

    .quiz-number,
    .quiz-button {
        height: 52px;
        width: 52px;
        font-size: 14px;
    }

    .quiz-button img {
        max-width: 24px;
    }

    .lang-no .step-item:first-child .step-title,
    .lang-sv .step-item:first-child .step-title,
    .lang-da .step-item:first-child .step-title,
    .lang-it .step-item:last-child .step-title {
        font-size: 8vw;
    }
}